runtime.mcache.tiny (field)
10 uses
runtime (current package)
malloc.go#L1173: if off+size <= maxTinySize && c.tiny != 0 {
malloc.go#L1175: x := unsafe.Pointer(c.tiny + off)
malloc.go#L1194: if !raceenabled && (size < c.tinyoffset || c.tiny == 0) {
malloc.go#L1196: c.tiny = uintptr(x)
mcache.go#L41: tiny uintptr
mcache.go#L306: c.tiny = 0
mgcmark.go#L1804: if c == nil || c.tiny == 0 {
mgcmark.go#L1808: if !tryDeferToSpanScan(c.tiny, gcw) {
mgcmark.go#L1809: _, span, objIndex := findObject(c.tiny, 0, 0)
mgcmark.go#L1810: greyobject(c.tiny, 0, 0, span, gcw, objIndex)